type crypto/tls.ticketKey
11 uses
crypto/tls (current package)
common.go#L910: sessionTicketKeys []ticketKey
common.go#L913: autoSessionTicketKeys []ticketKey
common.go#L961: type ticketKey struct {
common.go#L971: func (c *Config) ticketKeyFromBytes(b [32]byte) (key ticketKey) {
common.go#L1069: c.sessionTicketKeys = []ticketKey{c.ticketKeyFromBytes(c.SessionTicketKey)}
common.go#L1083: func (c *Config) ticketKeys(configForClient *Config) []ticketKey {
common.go#L1126: valid := make([]ticketKey, 0, len(c.autoSessionTicketKeys)+1)
common.go#L1157: newKeys := make([]ticketKey, len(keys))
conn.go#L77: ticketKeys []ticketKey
ticket.go#L325: func (c *Config) encryptTicket(state []byte, ticketKeys []ticketKey) ([]byte, error) {
ticket.go#L370: func (c *Config) decryptTicket(encrypted []byte, ticketKeys []ticketKey) []byte {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |